Spread Windows Forms 15.0
GrapeCity.CalcEngine Assembly / GrapeCity.CalcEngine Namespace / ArrayHelper Class / Clone Method / Clone<T>(T[]) Method
The type of element in array.
The array source to clone.


In This Topic
    Clone<T>(T[]) Method
    In This Topic
    Clones the specified array to a new array.
    Syntax
    'Declaration
     
    
    Public Overloads Shared Function Clone(Of T)( _
       ByVal source() As T _
    ) As T()
    'Usage
     
    
    Dim source() As T
    Dim value() As T
     
    value = ArrayHelper.Clone(Of T)(source)
    public static T[] Clone<T>( 
       T[] source
    )

    Parameters

    source
    The array source to clone.

    Type Parameters

    T
    The type of element in array.
    See Also